add frontend skeleton
This commit is contained in:
parent
8cf0897ec5
commit
bea56f101a
4 changed files with 77 additions and 0 deletions
35
frontend/vite.config.js
Normal file
35
frontend/vite.config.js
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import {fileURLToPath, URL} from 'node:url'
|
||||
|
||||
import {defineConfig} from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import * as fs from "fs";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||||
}
|
||||
},
|
||||
server: {
|
||||
host: true,
|
||||
cors: true,
|
||||
headers: {
|
||||
//allow all origins
|
||||
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
|
||||
'Access-Control-Allow-Headers': 'Origin, Content-Type, X-Auth-Token, Authorization, Accept, charset, boundary, Content-Length',
|
||||
'Access-Control-Allow-Credentials': 'true',
|
||||
'Access-Control-Max-Age': '86400',
|
||||
'Content-Security-Policy': 'default-src \'self\';'
|
||||
+ ' script-src \'self\' \'wasm-unsafe-eval\';'
|
||||
+ ' style-src \'self\' \'unsafe-inline\';'
|
||||
+ ' img-src \'self\' data:; '
|
||||
+ ' connect-src * data:', // TODO: change * to https://* for production (probably in nginx config not here)
|
||||
},
|
||||
},
|
||||
test: {
|
||||
include: ['src/tests/**/*.js'],
|
||||
globals: true,
|
||||
environment: "jsdom"
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue