Started to add a notification div
We just need to correctly implement Jquery and we will be able to show notifications in the game Also updated npm modules
This commit is contained in:
13
src/vite.config.js
Normal file
13
src/vite.config.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import inject from "@rollup/plugin-inject";
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
inject({
|
||||
jQuery: 'jquery',
|
||||
}),
|
||||
],
|
||||
optimizeDeps: {
|
||||
include: ['jquery'],
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user