첫커밋

This commit is contained in:
2023-09-04 13:23:09 +09:00
parent 23c591bbe5
commit 102ca997b6
249 changed files with 24682 additions and 0 deletions

12
intelij.webpack.js Normal file
View File

@@ -0,0 +1,12 @@
// This configuration file is not used anywhere in the code, it's a hack to handle InteliJ relative path imports
// Keep in sync with actual webpack aliases
const path = require('path');
module.exports = {
resolve: {
alias: {
'@': path.resolve(__dirname, 'src')
}
}
};