mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
12 lines
141 B
JavaScript
12 lines
141 B
JavaScript
/**
|
|
* @type {import('vite').UserConfig}
|
|
*/
|
|
module.exports = {
|
|
css: {
|
|
devSourcemap: true,
|
|
},
|
|
build: {
|
|
sourcemap: true,
|
|
},
|
|
}
|