Skip to content

(in-progress) portfolio from scratch (with React + React Bootstrap)

Notifications You must be signed in to change notification settings

adamhb123/Portfolio

Repository files navigation

Portfolio

  • npm start — This will spawn a development server.
  • npm run prod — This will spawn a production server.
  • npm run build — This will output a production build in the dist directory.

Adding styles

You can use CSS files with simple ES2015 import statements anywhere in your Javascript:

import "./index.css";

Babel transforms

The Babel preset babel-preset-nano-react-app is used to support the same transforms that Create React App supports.

The Babel configuration lives inside package.json and will override an external .babelrc file, so if you want to use .babelrc remember to delete the babel property inside package.json.