Browse Source

Update demo copyright headers.

pull/219/head
SpencerWhitehead 2 years ago
parent
commit
3518c86b78
  1. 6
      demo/configs/webpack/common.js
  2. 6
      demo/configs/webpack/dev.js
  3. 6
      demo/configs/webpack/prod.js
  4. 6
      demo/postcss.config.js
  5. 6
      demo/tailwind.config.js

6
demo/configs/webpack/common.js

@ -1,3 +1,9 @@ @@ -1,3 +1,9 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
const { resolve } = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin");

6
demo/configs/webpack/dev.js

@ -1,3 +1,9 @@ @@ -1,3 +1,9 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
// development config
const { merge } = require("webpack-merge");
const commonConfig = require("./common");

6
demo/configs/webpack/prod.js

@ -1,3 +1,9 @@ @@ -1,3 +1,9 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
// production config
const { merge } = require("webpack-merge");
const { resolve } = require("path");

6
demo/postcss.config.js

@ -1,3 +1,9 @@ @@ -1,3 +1,9 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
const tailwindcss = require("tailwindcss");
module.exports = {
plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss],

6
demo/tailwind.config.js

@ -1,3 +1,9 @@ @@ -1,3 +1,9 @@
// Copyright (c) Meta Platforms, Inc. and affiliates.
// All rights reserved.
// This source code is licensed under the license found in the
// LICENSE file in the root directory of this source tree.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,tsx}"],

Loading…
Cancel
Save