Update demo copyright headers.
parent
c1910835a3
commit
3518c86b78
|
@ -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 { 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");
|
||||||
|
|
|
@ -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
|
// development config
|
||||||
const { merge } = require("webpack-merge");
|
const { merge } = require("webpack-merge");
|
||||||
const commonConfig = require("./common");
|
const commonConfig = require("./common");
|
||||||
|
|
|
@ -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
|
// production config
|
||||||
const { merge } = require("webpack-merge");
|
const { merge } = require("webpack-merge");
|
||||||
const { resolve } = require("path");
|
const { resolve } = require("path");
|
||||||
|
|
|
@ -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");
|
const tailwindcss = require("tailwindcss");
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss],
|
plugins: ["postcss-preset-env", 'tailwindcss/nesting', tailwindcss],
|
||||||
|
|
|
@ -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} */
|
/** @type {import('tailwindcss').Config} */
|
||||||
module.exports = {
|
module.exports = {
|
||||||
content: ["./src/**/*.{html,js,tsx}"],
|
content: ["./src/**/*.{html,js,tsx}"],
|
||||||
|
|
Loading…
Reference in New Issue