Wide Angle plugin with working sample
This commit is contained in:
parent
8e400e1b62
commit
627d04c1a7
18 changed files with 1524 additions and 9 deletions
13
sample/vue-sample/vite.config.js
Normal file
13
sample/vue-sample/vite.config.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { fileURLToPath, URL } from 'node:url'
|
||||
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||||
}
|
||||
}
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue