Skip to content
/ buncho Public

Opinionated React App Build System

License

Notifications You must be signed in to change notification settings

neetly/buncho

Repository files navigation

Buncho

CI npm version

yarn add --dev buncho
yarn buncho start

Config

// buncho.json
{
  "publicPath": "/",
  "useReactRefresh": true,

  "devServer": {
    "host": "localhost",
    "port": 3000,
    "proxy": [],
  },
}

Storybook

yarn add --dev storybook @storybook/react-webpack5 @buncho/storybook-preset
yarn storybook dev
// .storybook/main.ts
export const framework = "@storybook/react-webpack5";
export const addons = ["@buncho/storybook-preset"];

Credit

This project was inspired by Create React App.