14 lines
413 B
TypeScript
14 lines
413 B
TypeScript
import { BlitzConfig } from "blitz"
|
|
|
|
const config: BlitzConfig = {
|
|
/* Uncomment this to customize the webpack config
|
|
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
|
|
// Note: we provide webpack above so you should not `require` it
|
|
// Perform customizations to webpack config
|
|
// Important: return the modified config
|
|
return config
|
|
},
|
|
*/
|
|
}
|
|
module.exports = config
|