コンパイラかく語りき

import { Fun } from 'programming'

2023-10-01から1ヶ月間の記事一覧

webpackで特定のwarningを消す(Craco対応

webpack で特定の warning 表示を消す場合。 ignoreWarnings を使う。 module.exports = { //... ignoreWarnings: [ { module: /module2\.js\?[34]/, // A RegExp }, { module: /[13]/, message: /homepage/, }, /warning from compiler/, (warning) => true…