1.0.1 • Published 2 years ago

single-spa-webpack-config-react-ts v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

single-spa-webpack-config-react-ts

Getting started

  • Supported Node Engine
node - v16.12.0
yarn - 1.22.19

How to Use it

  • Install as a node module package like
yarn add -D single-spa-webpack-config-react-ts
  • Added Below line in your project webpack.config.js like,
const {
  singleSpaWebpackConfig,
} = require("single-spa-webpack-config-react-ts");

module.exports = singleSpaWebpackConfig(<your_organization_name>, <your_project_name>, <customize_webpack_config>);
  • Added Below line in your project babel.config.js like,
const { singleSpaBabelConfig } = require("single-spa-webpack-config-react-ts");

module.exports = singleSpaBabelConfig(<customize_babel_config>);
  • Added Below line in your project tailwind.config.js like,
const { singleSpaTailwindConfig } = require("single-spa-webpack-config-react-ts");

module.exports = singleSpaTailwindConfig(<customize_tailwind_config>);
  • Added Below line in your project postcss.config.js like,
const { singleSpaPostcssConfig } = require("single-spa-webpack-config-react-ts");

module.exports = singleSpaPostcssConfig(<customize_postcss_config>);