Commit 3518c86b authored by SpencerWhitehead's avatar SpencerWhitehead
Browse files

Update demo copyright headers.

parent c1910835
// 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 { resolve } = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin");
const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin"); const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin");
......
// 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 // development config
const { merge } = require("webpack-merge"); const { merge } = require("webpack-merge");
const commonConfig = require("./common"); const commonConfig = require("./common");
......
// 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 // production config
const { merge } = require("webpack-merge"); const { merge } = require("webpack-merge");
const { resolve } = require("path"); const { resolve } = require("path");
......
// 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"); const tailwindcss = require("tailwindcss");
module.exports = { module.exports = {
plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss], plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss],
......
// 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} */ /** @type {import('tailwindcss').Config} */
module.exports = { module.exports = {
content: ["./src/**/*.{html,js,tsx}"], content: ["./src/**/*.{html,js,tsx}"],
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment