10 lines
223 B
JavaScript
10 lines
223 B
JavaScript
// vite.config.js
|
|
const {defineConfig} = require('vite');
|
|
export default defineConfig({
|
|
server: {
|
|
fs: {
|
|
// Allow serving files from one level up to the project root
|
|
strict: false
|
|
}
|
|
}
|
|
}) |