mm.site/vite.config.js

19 lines
329 B
JavaScript
Raw Normal View History

2023-10-04 11:38:35 +00:00
import { defineConfig } from 'vite'
export default defineConfig({
base: '/',
build: {
sourcemap: true,
target: [ 'esnext', 'edge100', 'firefox100', 'chrome100', 'safari18' ],
rollupOptions: {
external: [
'scripts',
'public/media'
],
},
2023-10-04 11:38:35 +00:00
},
server: {
host: '0.0.0.0'
}
2023-10-04 11:38:35 +00:00
})