first commit

This commit is contained in:
kicap1992
2022-04-27 01:19:12 +08:00
parent 1ac188d93a
commit c3d0676355
38 changed files with 11606 additions and 1486 deletions

View File

@ -1,6 +1,21 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// compiler : {
// // Enables the styled-components SWC transform
// styledComponents: true
// }
}
module.exports = nextConfig
const webpack = require('webpack');
const {parsed : myEnv} = require('dotenv').config();
// module.exports = nextConfig
module.exports = {
webpack: (config) => {
config.plugins.push(new webpack.EnvironmentPlugin(myEnv));
return config;
},
nextConfig
}