Skip to content
This repository has been archived by the owner on Mar 10, 2019. It is now read-only.

base-cms/base4-website-nextjs-bootstrap

Repository files navigation

Bootstrap Design Components for Base4 NextJS Websites

Adds Boostrap component support for Base4 NextJS websites.

Installation

This package requires the @base-cms/base4-website-nextjs package, along with its peer dependencies. To install:

yarn add @base-cms/base4-website-nextjs @base-cms/base4-website-nextjs-bootstrap bootstrap [...additional peers]

Once installed, add the following to your next.config.js:

// next.config.js
const withSass = require('@base-cms/base4-website-nextjs-bootstrap/next-config');
const withBaseWebsite = require('@base-cms/base4-website-nextjs/next-config');

module.exports = withSass(withBaseWebsite({
  // additional config options...
}));

You must also create a postcss.config.js file in your project root:

// postcss.config.js
module.exports = (ctx) => {
  const plugins = {
    precss: {},
    autoprefixer: {
      ...ctx.options.autoprefixer,
      cascade: false,
    },
  };

  return { plugins };
};

Finally, the Browserlist file .browserslistrc must be created in the project root. The following demonstrates Bootstrap 4's current browser settings:

>= 1%
last 1 major version
not dead
Chrome >= 45
Firefox >= 38
Edge >= 12
Explorer >= 10
iOS >= 9
Safari >= 9
Android >= 4.4
Opera >= 30

Usage

Once installed, create a SASS file of your choosing, and import into your NextJS app. For example...

// styles/app.scss
// Setup custom bootstrap variables here, or in an external file.
@import "~bootstrap/scss/bootstrap";

Then, inside the _app page:

// pages/_app.jsx
import '../styles/app.scss';
import {
  WebsiteApp,
  withApollo,
  withRouting,
  withSiteConfig,
} from '@base-cms/base4-website-nextjs/app';
// everything else...

About

Bootstrap Design Components for Base4 NextJS Websites

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published