$ yarn watch yarn run v1.23.0-20220130.1630 WARNING: You should add "svelte" to the "resolve.conditionNames" array in your webpack config. See https://github.com/sveltejs/svelte-loader#resolveconditionnames for more information webpack config file: ``` js config.resolve = { fallback: { assert: false }, extensions: ['.cjs', '.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.css', '.scss', '.svelte'], modules: ['src', 'lib', 'node_modules', 'tmpls'], alias: { vendor: __dirname + '/lib/vendor', jquery: __dirname + '/lib/vendor-adapters/jquery-global-adapter', jqueryNonGlobal: __dirname + '/node_modules/jquery', moment: __dirname + '/lib/vendor-adapters/moment-global-adapter', momentNonGlobal: __dirname + '/node_modules/moment', xdoc: __dirname + '/src/xdoc', client: __dirname + '/src/client', node_modules: 'node_modules', test: __dirname + '/src/test', svelte: __dirname + '/node_modules/svelte', src: __dirname + '/src', tmpls: __dirname + '/tmpls', }, conditionNames: ['svelte'], }; ``` Any places I should check? Is the warning looking at the value of the property? Or is it trying to parse the config file itself?