Apexie-Website/vite.config.js

12 lines
181 B
JavaScript
Raw Normal View History

import path from 'path'
export default {
resolve: {
alias: {
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap')
}
},
server: {
cors: true
}
}