UNPKG

react-phone-number-input-mui

Version:

Telephone input for React and Material-UI. Fork of catamphetamine awesome work of react-phone-number-input.

15 lines (11 loc) 685 B
// you can use this file to add your custom webpack plugins, loaders and anything you like. // This is just the basic way to add additional webpack configurations. // For more information refer the docs: https://storybook.js.org/configurations/custom-webpack-config // IMPORTANT // When you add this file, we won't add the default configurations which is similar // to "React Create App". This only has babel loader to load JavaScript. const baseWebPackConfig = require('../webpack.config.js'); const path = require("path"); baseWebPackConfig.resolve = {}; baseWebPackConfig.resolve.modules = ["node_modules", path.resolve(__dirname, "../src")]; module.exports = baseWebPackConfig;