mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
d6204946c2
- server: add a `Track` class - server: add a create_track_class function - client: migrate from vue-cli to vite
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
es2021: true,
|
|
},
|
|
extends: ["plugin:vue/vue3-essential", "eslint:recommended"],
|
|
rules: {
|
|
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
|
},
|
|
};
|